home *** CD-ROM | disk | FTP | other *** search
/ Aminet 16 / Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso / Aminet / dev / src / wangisrc.lha / wangi / z / ea / version.h < prev   
C/C++ Source or Header  |  1996-02-04  |  549b  |  34 lines

  1. /*************************************************************************
  2.  *
  3.  * ea/deea
  4.  *
  5.  * Copyright ©1995 Lee Kindness and Evan Tuer
  6.  * cs2lk@scms.rgu.ac.uk
  7.  *
  8.  * version.h
  9.  */
  10.  
  11. #include "machine.h"
  12.  
  13. #ifndef _VERSION_H_
  14. #define _VERSION_H_
  15.  
  16. #define VERSION_NUM "1.0"
  17. #ifdef AMIGA
  18. #define VERSION_DATE __AMIGADATE__
  19. #else
  20. #define VERSION_DATE ""
  21. #endif
  22.  
  23. #ifdef AMIGA
  24. #define CREATOR "ea " VERSION_NUM " Amiga"
  25. #else
  26. #ifdef MSDOS
  27. #define CREATOR "ea " VERSION_NUM " MSDOS"
  28. #else
  29. #define CREATOR "ea " VERSION_NUM " Generic"
  30. #endif
  31. #endif
  32.  
  33. #endif
  34.